home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 59 / 59.xpi / chrome / useragentswitcher.jar / content / useragentswitcher / common / stringbundle.js < prev   
Text File  |  2009-06-30  |  981b  |  48 lines

  1. // User Agent Switcher string bundle
  2. var UserAgentSwitcherStringBundle =
  3. {
  4.     // Returns a formatted string from a string bundle
  5.     getFormattedString: function(key, token)
  6.     {
  7.         var stringBundle = document.getElementById("useragentswitcher-string-bundle");
  8.         
  9.         // If the string bundle, key and token are set
  10.         if(stringBundle && key && token)
  11.         {
  12.             // Try to get the string from the bundle
  13.             try
  14.             {
  15.                 return stringBundle.getFormattedString("useragentswitcher_" + key, token);
  16.             }
  17.             catch(exception)
  18.             {
  19.                 // Do nothing
  20.             }
  21.         }
  22.         
  23.         return "";
  24.     },
  25.  
  26.     // Returns a string from a string bundle
  27.     getString: function(key)
  28.     {
  29.         var stringBundle = document.getElementById("useragentswitcher-string-bundle");
  30.         
  31.         // If the string bundle and key are set
  32.         if(stringBundle && key)
  33.         {
  34.             // Try to get the string from the bundle
  35.             try
  36.             {
  37.                 return stringBundle.getString("useragentswitcher_" + key);
  38.             }
  39.             catch(exception)
  40.             {
  41.                 // Do nothing
  42.             }
  43.         }
  44.         
  45.         return "";
  46.     }
  47. }
  48.